type net/http.http2ErrCode

42 uses

	net/http (current package)
		h2_bundle.go#L1170: type http2ErrCode uint32
		h2_bundle.go#L1173: 	http2ErrCodeNo                 http2ErrCode = 0x0
		h2_bundle.go#L1174: 	http2ErrCodeProtocol           http2ErrCode = 0x1
		h2_bundle.go#L1175: 	http2ErrCodeInternal           http2ErrCode = 0x2
		h2_bundle.go#L1176: 	http2ErrCodeFlowControl        http2ErrCode = 0x3
		h2_bundle.go#L1177: 	http2ErrCodeSettingsTimeout    http2ErrCode = 0x4
		h2_bundle.go#L1178: 	http2ErrCodeStreamClosed       http2ErrCode = 0x5
		h2_bundle.go#L1179: 	http2ErrCodeFrameSize          http2ErrCode = 0x6
		h2_bundle.go#L1180: 	http2ErrCodeRefusedStream      http2ErrCode = 0x7
		h2_bundle.go#L1181: 	http2ErrCodeCancel             http2ErrCode = 0x8
		h2_bundle.go#L1182: 	http2ErrCodeCompression        http2ErrCode = 0x9
		h2_bundle.go#L1183: 	http2ErrCodeConnect            http2ErrCode = 0xa
		h2_bundle.go#L1184: 	http2ErrCodeEnhanceYourCalm    http2ErrCode = 0xb
		h2_bundle.go#L1185: 	http2ErrCodeInadequateSecurity http2ErrCode = 0xc
		h2_bundle.go#L1186: 	http2ErrCodeHTTP11Required     http2ErrCode = 0xd
		h2_bundle.go#L1189: var http2errCodeName = map[http2ErrCode]string{
		h2_bundle.go#L1206: func (e http2ErrCode) String() string {
		h2_bundle.go#L1213: func (e http2ErrCode) stringToken() string {
		h2_bundle.go#L1222: type http2ConnectionError http2ErrCode
		h2_bundle.go#L1225: 	return fmt.Sprintf("connection error: %s", http2ErrCode(e))
		h2_bundle.go#L1232: 	Code     http2ErrCode
		h2_bundle.go#L1241: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
		h2_bundle.go#L1269: 	Code   http2ErrCode // the ConnectionError error code
		h2_bundle.go#L1933: func (fr *http2Framer) connError(code http2ErrCode, reason string) error {
		h2_bundle.go#L2287: 	ErrCode      http2ErrCode
		h2_bundle.go#L2312: 		ErrCode:          http2ErrCode(binary.BigEndian.Uint32(p[4:8])),
		h2_bundle.go#L2317: func (f *http2Framer) WriteGoAway(maxStreamID uint32, code http2ErrCode, debugData []byte) error {
		h2_bundle.go#L2609: 	ErrCode http2ErrCode
		h2_bundle.go#L2621: 	return &http2RSTStreamFrame{fh, http2ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
		h2_bundle.go#L2628: func (f *http2Framer) WriteRSTStream(streamID uint32, code http2ErrCode) error {
		h2_bundle.go#L4355: func (sc *http2serverConn) rejectConn(err http2ErrCode, debug string) {
		h2_bundle.go#L4412: 	goAwayCode                  http2ErrCode
		h2_bundle.go#L5240: func (sc *http2serverConn) goAway(code http2ErrCode) {
		h2_bundle.go#L5310: 		sc.goAway(http2ErrCode(ev))
		h2_bundle.go#L7105: 	var code http2ErrCode
		h2_bundle.go#L7109: 		code = http2ErrCode(e)
		h2_bundle.go#L7112: 		code = http2ErrCode(e.Code)
		h2_bundle.go#L9237: 		cc.fr.WriteGoAway(0, http2ErrCode(ce), nil)
		h2_bundle.go#L9246: 	ErrCode      http2ErrCode
		h2_bundle.go#L9310: 		errCode := http2ErrCode(ce)
		h2_bundle.go#L10080: func (cc *http2ClientConn) writeStreamReset(streamID uint32, code http2ErrCode, err error) {
		h2_bundle.go#L10341: 	code        http2ErrCode